home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 14 / CU Amiga Magazine's Super CD-ROM 14 (1997)(EMAP Images)(GB)(Track 1 of 3)[!][issue 1997-09].iso / CUCD / Online / WGet / lib / wgetrc
Encoding:
Text File  |  1997-01-08  |  2.9 KB  |  88 lines

  1. ###
  2. ### Sample initialization file .wgetrc
  3. ###
  4.  
  5. ## You can use this file to change the default behaviour of wget or to
  6. ## avoid having to type many many command-line options. This file does
  7. ## not contain a comprehensive list of commands -- look at the manual
  8. ## to find out what you can put into this file.
  9. ## 
  10. ## Wget initialization file can reside in /usr/local/lib/wgetrc
  11. ## (global, for all users) or $HOME/.wgetrc (for a single user).
  12. ##
  13. ## To use any of the settings in this file, you will have to uncomment
  14. ## them (and probably change them).
  15.  
  16.  
  17. ##
  18. ## Global settings (useful for setting up in /usr/local/lib/wgetrc).
  19. ## Think well before you change them, since they may reduce wget's
  20. ## functionality, and make it behave contrary to the documentation:
  21. ##
  22.  
  23. # You can set retrieve quota for beginners by specifying a value
  24. # optionally followed by 'K' (kilobytes) or 'M' (megabytes).  The
  25. # default quota is unlimited.
  26. #quota = inf
  27.  
  28. # You can lower (or raise) the default number of retries when
  29. # downloading a file (default is 20).
  30. #numtries = 20
  31.  
  32. # Lowering the maximum depth of the recursive retrieval is handy to
  33. # prevent newbies from going too "deep" when they unwittingly start
  34. # the recursive retrieval.  The default is 5.
  35. #reclevel = 5
  36.  
  37.  
  38. ##
  39. ## Local settings (for a user to set in his $HOME/.wgetrc).  It is
  40. ## *highly* undesirable to put these settings in the global file, since
  41. ## they are potentially dangerous to "normal" users.
  42. ##
  43. ## Even when setting up your own ~/.wgetrc, you should know what you
  44. ## are doing before doing so.
  45. ##
  46.  
  47. # Set this to on to use timestamping by default:
  48. #timestamping = off
  49.  
  50. # It is a good idea to make Wget send your email address in a `From:'
  51. # header with your request (so that server administrators can contact
  52. # you in case of errors).  Wget does *not* send `From:' by default.
  53. #header = From: Your Name <username@site.domain>
  54.  
  55. # You can set up other headers, like Accept-Language.  Accept-Language
  56. # is *not* sent by default.
  57. #header = Accept-Language: en
  58.  
  59. # You can set the default proxy for Wget to use.  It will override the
  60. # value in the environment.
  61. #http_proxy = http://proxy.yoyodine.com:18023/
  62.  
  63. # If you do not want to use proxy at all, set this to off.
  64. #use_proxy = on
  65.  
  66. # You can customize the retrieval outlook.  Valid options are default,
  67. # binary, mega and micro.
  68. #dot_style = default
  69.  
  70. # Setting this to off makes Wget not to download /robots.txt.
  71. #robots = on
  72.  
  73. # It can be useful to make Wget wait between connections.  Set this to
  74. # the number of seconds you want Wget to wait.
  75. #wait = 0
  76.  
  77. # You can force creating directory structure, even if a single is being
  78. # retrieved, by setting this to on.
  79. #dirstruct = off
  80.  
  81. # You can turn on recursive retrieving by default (don't do this if
  82. # you are not sure you know what it means) by setting this to on.
  83. #recursive = off
  84.  
  85. # To have Wget follow FTP links from HTML files by default, set this
  86. # to on:
  87. #follow_ftp = off
  88.